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

body {
  background: #faf7f3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #16130f;
}

a { color: #f0480a; text-decoration: none; }
a:hover { color: #c93c08; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  border-bottom: 1px solid #eee8e1;
  background: rgba(250, 247, 243, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #16130f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand:hover { color: #16130f; }

.brand-icon {
  width: 34px;
  height: 34px;
  line-height: 0;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(240, 72, 10, 0.3);
  overflow: hidden;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links > a:not(.btn) {
  font-size: 14.5px;
  font-weight: 500;
  color: #6b6560;
}

.nav-links > a:not(.btn):hover { color: #c93c08; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font-weight: 650;
  border: none;
  cursor: pointer;
}

.btn-sm {
  background: #f0480a;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(240, 72, 10, 0.28);
}

.btn-sm:hover { background: #d94008; color: #fff !important; }

.btn-primary {
  background: #f0480a;
  color: #fff;
  font-size: 16px;
  padding: 15px 26px;
  box-shadow: 0 6px 18px rgba(240, 72, 10, 0.3);
}

.btn-primary:hover { background: #d94008; color: #fff; }

.btn-outline {
  background: #fff;
  border: 1.5px solid #ebe5de;
  color: #16130f;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 24px;
}

.btn-outline:hover { color: #16130f; background: #fff8f4; }

.btn-light {
  background: #fff;
  color: #c93c08;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(120, 30, 0, 0.28);
}

.btn-light:hover { color: #a83306; background: #fff8f4; }

.hero {
  background: radial-gradient(120% 90% at 78% 0%, #ffe7da 0%, #faf7f3 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px 84px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3ed;
  color: #c93c08;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}

h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 20px 0 0;
  text-wrap: pretty;
}

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: #6b6560;
  margin: 20px 0 0;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: #8a837b;
  font-size: 14px;
  font-weight: 500;
}

.hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 24px 55px rgba(22, 19, 15, 0.16));
  min-width: 0;
}

.popup-mock {
  width: 340px;
  max-width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(22, 19, 15, 0.04);
}

.popup-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #f1ece6;
}

.popup-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(240, 72, 10, 0.28);
  line-height: 0;
}

.popup-title {
  font-size: 14.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.popup-sub {
  font-size: 11.5px;
  color: #8a837b;
  margin-top: 1px;
}

.popup-body { padding: 16px 18px 18px; }

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  background: #eaf7ee;
  color: #15803d;
  margin-bottom: 14px;
}

.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.mock-primary {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 11px;
  background: #f0480a;
  color: #fff;
  font-size: 14.5px;
  font-weight: 650;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 4px 14px rgba(240, 72, 10, 0.3);
  cursor: default;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  font-size: 11px;
  color: #a79f96;
  font-weight: 500;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #f1ece6;
}

.row-n { display: flex; gap: 8px; }

.stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #ebe5de;
  border-radius: 11px;
  overflow: hidden;
  flex: 0 0 104px;
  height: 44px;
}

.stepper span {
  width: 34px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf7f3;
  color: #6b6560;
  font-size: 18px;
}

.stepper b {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 650;
}

.mock-secondary {
  flex: 1;
  border: 1.5px solid #f0480a;
  border-radius: 11px;
  background: #fff3ed;
  color: #c93c08;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: default;
}

.hint {
  margin: 13px 2px 0;
  font-size: 11.5px;
  line-height: 1.5;
  color: #8a837b;
}

.hint b { color: #6b6560; font-weight: 600; }

.section { padding: 72px 24px 8px; }
.section-cta { padding: 72px 24px 84px; }

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

.section-lead {
  font-size: 17px;
  line-height: 1.55;
  color: #6b6560;
  margin: 14px 0 0;
}

.browser-section { padding-bottom: 8px; }

.browser {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  background: #e9ebee;
  border: 1px solid #e1e3e6;
  box-shadow: 0 30px 70px rgba(22, 19, 15, 0.16);
}

.browser-chrome {
  background: #dee1e6;
  padding: 10px 14px 0;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 9px;
}

.browser-dots > span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dots > span:nth-child(1) { background: #ff5f57; }
.browser-dots > span:nth-child(2) { background: #febc2e; }
.browser-dots > span:nth-child(3) { background: #28c840; }

.browser-tab {
  margin-left: 10px;
  background: #f4f5f7;
  border-radius: 9px 9px 0 0;
  padding: 9px 16px;
  font-size: 13px;
  color: #3c4043;
  font-weight: 500;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-bar {
  background: #f4f5f7;
  border-bottom: 1px solid #e1e3e6;
  display: flex;
  align-items: center;
  padding: 9px 14px;
  gap: 12px;
}

.browser-nav {
  display: flex;
  gap: 14px;
  color: #5f6368;
  flex: 0 0 auto;
}

.browser-url {
  flex: 1;
  height: 32px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 9px;
  font-size: 13.5px;
  color: #5f6368;
  min-width: 0;
}

.browser-url span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-ext {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.ext-pin {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 2.5px rgba(240, 72, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.avatar-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #cde7d6;
  flex: 0 0 26px;
}

.browser-page {
  position: relative;
  padding: 26px 28px;
  min-height: 360px;
  background: #fafbfc;
}

.page-title {
  font-size: 18px;
  font-weight: 700;
  color: #232733;
}

.page-sub {
  font-size: 13px;
  color: #8a8f99;
  margin-top: 3px;
  margin-bottom: 18px;
}

.cand-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.cand {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: 12px;
  padding: 14px 16px;
}

.av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 40px;
}

.av-a { background: #ffddcb; }
.av-b { background: #cde7d6; }
.av-c { background: #d6e0f5; }
.av-d { background: #f5e0c9; }

.cand div { flex: 1; min-width: 0; }
.cand i {
  display: block;
  height: 9px;
  width: 60%;
  max-width: 170px;
  background: #d8dbe0;
  border-radius: 5px;
}
.cand i.s {
  height: 8px;
  width: 40%;
  max-width: 110px;
  background: #eaecef;
  margin-top: 8px;
}
.cand:nth-child(2) i { width: 52%; }
.cand:nth-child(2) i.s { width: 46%; }
.cand:nth-child(3) i { width: 66%; }
.cand:nth-child(3) i.s { width: 34%; }
.cand:nth-child(4) i { width: 58%; }
.cand:nth-child(4) i.s { width: 44%; }

.browser-popup {
  position: absolute;
  right: 22px;
  top: 14px;
  filter: drop-shadow(0 22px 46px rgba(30, 20, 10, 0.28));
  max-width: calc(100% - 44px);
}

.popup-mock--compact {
  width: min(340px, 100%);
}

.browser-caption {
  text-align: center;
  font-size: 13.5px;
  color: #a79f96;
  margin: 18px 0 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c08560;
}

h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  text-wrap: pretty;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.card {
  background: #fff;
  border: 1px solid #eee8e1;
  border-radius: 18px;
  padding: 26px 28px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #6b6560;
  margin: 8px 0 0;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff3ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #f0480a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta {
  background: linear-gradient(135deg, #ff7a3c, #f0480a);
  border-radius: 24px;
  padding: 56px 48px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 50px rgba(240, 72, 10, 0.3);
}

.cta h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0;
}

.cta p {
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.94;
  margin: 16px auto 0;
  max-width: 520px;
}

.cta .btn-light { margin-top: 30px; }

.footer {
  border-top: 1px solid #eee8e1;
  margin-top: 24px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 24px;
  color: #8a837b;
  font-size: 13.5px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-brand svg {
  border-radius: 7px;
  overflow: hidden;
}

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

.footer-links a { color: #8a837b; }
.footer-links a:hover { color: #c93c08; }

.footer-note {
  padding: 0 24px 26px;
  color: #b0a99f;
  font-size: 12.5px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 48px 24px 56px;
    gap: 36px;
  }

  .hero-visual { order: -1; }

  .nav-links a:not(.btn) { display: none; }

  .cta { padding: 40px 24px; }

  .browser-popup {
    position: static;
    margin-top: 20px;
    filter: drop-shadow(0 12px 28px rgba(30, 20, 10, 0.18));
  }

  .browser-page { min-height: 0; }

  .browser-nav { display: none; }
}
