:root {
  --c-bg: #f4f5f7;
  --c-surface: #ffffff;
  --c-surface-soft: #f9fafb;
  --c-text: #14140c;
  --c-muted: #6b7280;
  --c-muted-2: #9ca3af;
  --c-muted-3: #d1d5db;
  --c-border: #f3f4f6;
  --c-border-2: #e5e7eb;
  --c-primary: #ea5127;
  --c-primary-hover: #d44820;
  --c-primary-light: #ff8f68;
  --c-primary-soft: #fff7ed;
  --c-critical: #ef4444;
  --c-success: #10b981;
  --c-info: #3b82f6;
  --c-dark: #111111;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
button:disabled { cursor: not-allowed; opacity: 0.5; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

body.has-modal { overflow: hidden; }

/* ════════════════════ NAVIGATION ════════════════════ */
.landing-nav {
  padding: 24px 16px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 9%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 200ms;
  padding: 24px 32px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 1280px;
  margin: 0 auto;
  border-radius: 25px;
}

.landing-nav::before {
  content: "";
  position: absolute;
  inset: 0; /* Растягиваем на всю шапку (top, right, bottom, left: 0) */
  z-index: -1; /* Помещаем позади контента шапки */
  border-radius: inherit; /* Наследуем 25px */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.landing-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(234, 81, 39, 0.25);
}

.nav-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-brand__text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  display: none;
}

.nav-menu {
  display: none;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--c-border);
}

.nav-menu__link {
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  transition: all 150ms;
  white-space: nowrap;
}

.nav-menu__link:hover {
  color: var(--c-text);
  background: var(--c-surface-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions__login {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 150ms;
  padding: 8px 12px;
  display: none;
}

.nav-actions__login:hover { color: var(--c-text); }

.nav-actions__cta {
  background: var(--c-text);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 150ms;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.nav-actions__cta:hover { background: #000; }

/* ════════════════════ HERO ════════════════════ */
.hero {
  padding: 64px 16px 80px;
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--c-muted-3) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: var(--c-primary);
  opacity: 0.05;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

.hero__container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero__shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 120%;
  height: 140%;
  background: var(--c-bg);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -10;
}

.hero__center {
  max-width: 771px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 20;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #ea580c;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--c-border);
  position: relative;
  z-index: 10;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  min-height: 150px;
  position: relative;
  z-index: 10;
}

.hero__br { display: none; }

.hero__typewriter {
  background: linear-gradient(to right, var(--c-primary), var(--c-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__cursor {
  color: var(--c-primary);
  font-weight: 300;
  margin-left: -4px;
  animation: pulse 1s ease-in-out infinite;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--c-muted);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.hero__form-wrap {
  position: relative;
  max-width: 672px;
  margin: 32px auto 0;
  padding: 0 8px;
  z-index: 20;
}

/* Scan form (macOS address bar) */
.scan-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.6);
  gap: 8px;
  transition: box-shadow 300ms;
}

.scan-form:hover {
  box-shadow: 0 12px 40px -4px rgba(0, 0, 0, 0.15);
}

.scan-form__traffic-lights {
  display: none;
  gap: 6px;
  padding: 0 16px;
  align-items: center;
  border-right: 1px solid var(--c-border);
  margin-right: 8px;
  height: 32px;
}

.traffic-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.traffic-light--red { background: #ff5f56; border: 1px solid rgba(224, 68, 62, 0.5); }
.traffic-light--yellow { background: #ffbd2e; border: 1px solid rgba(222, 161, 35, 0.5); }
.traffic-light--green { background: #27c93f; border: 1px solid rgba(26, 171, 41, 0.5); }

.scan-form__globe {
  display: none;
  padding-left: 8px;
  color: var(--c-muted-2);
  flex-shrink: 0;
}

.scan-form__globe svg { width: 20px; height: 20px; }

.scan-https{
  font-size: 20px;
  font-weight: 500;
  color: #d1d5db;
  cursor: pointer;
  user-select: none;
}

.scan-form__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 0;
  color: var(--c-text);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-left: -5px;
}

.scan-form__input::placeholder { color: #d1d5db; }

.scan-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background 150ms;
  box-shadow: 0 4px 14px rgba(234, 81, 39, 0.39);
  white-space: nowrap;
  flex-shrink: 0;
  width: 100%;
}

.scan-form__btn:hover { background: var(--c-primary-hover); }

.scan-form__btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 200ms;
}

.scan-form__btn:hover .scan-form__btn-icon { transform: translateX(4px); }

/* Handwritten arrow */
.hero__handwritten {
  display: none;
  position: absolute;
  bottom: -80px;
  left: 64px;
  width: 256px;
  pointer-events: none;
  z-index: 30;
  flex-direction: column;
  align-items: flex-start;
}

.hero__handwritten-arrow {
  width: 64px;
  height: 64px;
  color: var(--c-primary);
}

.hero__handwritten-text {
  font-family: var(--font-hand);
  color: #c2410c;
  font-size: 26px;
  line-height: 1.2;
  transform: rotate(-5deg);
  letter-spacing: 0.02em;
  margin-top: -5px;
  margin-left: -10px;
}

/* ════════════════════ FLOATING CARDS ════════════════════ */
.floating-cards {
  position: absolute;
  inset: 0;
  max-width: 1400px;
  margin: 0 auto;
  pointer-events: none;
  display: none;
  z-index: 0;
}

.float-card {
  position: absolute;
}

.float-card--1 { top: 8%; left: -4%; transform: rotate(-3deg); }
.float-card--2 { top: 40%; left: -8%; transform: rotate(2deg); }
.float-card--3 { bottom: 10%; left: 6%; transform: rotate(-6deg); }
.float-card--4 { top: 12%; right: -4%; transform: rotate(3deg); }
.float-card--5 { top: 45%; right: -8%; transform: rotate(-2deg); }
.float-card--6 { bottom: 12%; right: 2%; transform: rotate(6deg); }

.float-card__anim--1 { animation: float 6s ease-in-out infinite; }
.float-card__anim--2 { animation: float-delayed 7s ease-in-out infinite 2s; }
.float-card__anim--3 { animation: float-fast 4s ease-in-out infinite 1s; }

.float-card__inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 16px;
}

.float-card--2 .float-card__inner { padding: 20px; }

.float-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.float-card__icon svg { width: 20px; height: 20px; }
.float-card--2 .float-card__icon { width: 48px; height: 48px; }
.float-card--2 .float-card__icon svg { width: 24px; height: 24px; }

.float-card__icon--blue { background: #eff6ff; color: #3b82f6; }
.float-card__icon--red { background: #fef2f2; color: #ef4444; }
.float-card__icon--emerald { background: #ecfdf5; color: #10b981; }
.float-card__icon--orange { background: #fff7ed; color: #f97316; }
.float-card__icon--gray { background: #f3f4f6; color: #4b5563; }
.float-card__icon--purple { background: #faf5ff; color: #a855f7; }

.float-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted-2);
  margin-bottom: 2px;
}

.float-card__label--red { color: #ef4444; font-size: 11px; }

.float-card__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}

.float-card__value--big {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

/* ════════════════════ BENTO SECTION ════════════════════ */
.bento-section {
  padding: 64px 16px 96px;
  background: #fff;
}

.bento-section__container {
  max-width: 1280px;
  margin: 0 auto;
}

.bento-section__header {
  margin-bottom: 64px;
  max-width: 75%;
}

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bento-badge__icon { width: 16px; height: 16px; }

.bento-section__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bento-card {
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.bento-card--dark {
  background: var(--c-text);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
}

.bento-card--accent {
  background: linear-gradient(135deg, #ff8f68, #ea5127);
  color: #fff;
  box-shadow: 0 15px 40px -10px rgba(234, 81, 39, 0.4);
  border: none;
}

.bento-card--light {
  background: var(--c-bg);
  border: none;
}

.bento-card__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(234, 81, 39, 0.2);
  border-radius: 50%;
  filter: blur(80px);
  margin-right: -128px;
  margin-top: -128px;
  pointer-events: none;
}

.bento-card__content {
  position: relative;
  z-index: 10;
}

.bento-card__content--max-w { max-width: 448px; }

.bento-card__icon-box {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.bento-card__icon-box svg { width: 24px; height: 24px; }

.bento-card__icon-box--glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.bento-card__icon-box--glass svg { color: #fb923c; }

.bento-card__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-card__heading--light { color: #fff; }

.bento-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-muted);
}

.bento-card__text--light {
  color: #9ca3af;
  font-size: 17px;
  max-width: 560px;
}

/* Code snippet decorations */
.bento-card__code {
  position: absolute;
  right: 24px;
  top: 30%;
  transform: translateY(-50%);
  opacity: 0.2;
  pointer-events: none;
  display: none;
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
  font-size: 13px;
  user-select: none;
}

.bento-card__code--2 { text-align: right; right: -10px; top: 20%; }
.bento-card__code--3 { text-align: right; right: -10px; top: 35%; }
.bento-card__code--4 { right: -20px; top: 40%; }

.code-line { line-height: 1.6; }
.code-line--green { color: #34d399; }
.code-line--gray { color: #6b7280; }
.code-line--red { color: #f87171; }
.code-line--orange { color: #fb923c; }
.code-line--white-bold { color: #fff; font-weight: 700; }
.code-line--white80 { color: rgba(255, 255, 255, 0.8); }
.code-line--red-bold { color: #ef4444; font-weight: 700; }
.code-line--red-light { color: #fecaca; margin-top: 4px; }

/* Accent card specific */
.bento-card__accent-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 251, 245, 0.9);
  margin-bottom: 8px;
  position: relative;
  z-index: 10;
}

.bento-card__accent-value {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.bento-card__accent-desc {
  color: rgba(255, 243, 224, 1);
  font-weight: 500;
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 10;
}

/* ════════════════════ HOW IT WORKS ════════════════════ */
.how-section {
  padding: 64px 16px 96px;
}

.how-section__container {
  max-width: 1280px;
  margin: 0 auto;
}

.how-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.how-section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.how-section__subtitle {
  color: var(--c-muted);
  font-size: 18px;
  max-width: 685px;
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.how-connector {
  display: none;
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, transparent, #fed7aa, transparent);
  z-index: 0;
  pointer-events: none;
}

.how-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(249, 250, 251, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  transition: transform 300ms;
}

.how-card:hover { transform: translateY(-4px); }

.how-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.how-card__number {
  width: 48px;
  height: 48px;
  background: var(--c-bg);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--c-text);
  transition: background 300ms, color 300ms;
}

.how-card:hover .how-card__number {
  background: #fff7ed;
  color: var(--c-primary);
}

.how-card__icon {
  width: 24px;
  height: 24px;
  color: #d1d5db;
  transition: color 300ms;
}

.how-card:hover .how-card__icon { color: #fdba74; }

.how-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.how-card__text {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ════════════════════ REPORT EXAMPLE ════════════════════ */
.report-example-section {
  padding: 64px 16px 96px;
  background: var(--c-text);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.report-example-section__glow {
  position: absolute;
  right: -20%;
  top: -20%;
  width: 800px;
  height: 800px;
  background: var(--c-primary);
  opacity: 0.15;
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.report-example-section__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 10;
}

.report-example__text { width: 100%; }

.report-example__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fb923c;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.report-example__badge svg { width: 16px; height: 16px; }

.report-example__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.report-example__desc {
  color: #9ca3af;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.report-example__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.report-example__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d1d5db;
  font-size: 15px;
}

.report-example__list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.report-example__list-icon svg { width: 14px; height: 14px; }
.report-example__list-icon--emerald { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.report-example__list-icon--orange { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.report-example__list-icon--blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }

.report-example__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.report-example__btn-cta {
  background: var(--c-primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background 150ms;
  box-shadow: 0 4px 14px rgba(234, 81, 39, 0.39);
  text-align: center;
  width: 100%;
}

.report-example__btn-cta:hover { background: var(--c-primary-hover); }

.report-example__btn-demo {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background 150ms;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.report-example__btn-demo:hover { background: rgba(255, 255, 255, 0.2); }
.report-example__btn-demo svg { width: 16px; height: 16px; }

/* Report mockup */
.report-example__mockup {
  width: 100%;
  background: var(--c-bg);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 500ms;
}

.mockup-header {
  background: var(--c-border-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mockup-header__dots {
  display: flex;
  gap: 8px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot--red { background: #ff5f56; border: 1px solid rgba(224, 68, 62, 0.3); }
.mockup-dot--yellow { background: #ffbd2e; border: 1px solid rgba(222, 161, 35, 0.3); }
.mockup-dot--green { background: #27c93f; border: 1px solid rgba(26, 171, 41, 0.3); }

.mockup-header__address {
  margin: 0 auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.5);
  padding: 4px 32px;
  border-radius: 6px;
}

.mockup-header__shield { width: 14px; height: 14px; color: #10b981; }

.mockup-body {
  padding: 16px 32px;
  background: var(--c-bg);
  color: var(--c-text);
  position: relative;
  pointer-events: none;
  user-select: none;
}

.mockup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms;
  z-index: 10;
  pointer-events: auto;
}

.report-example__mockup:hover .mockup-overlay { opacity: 1; }

.mockup-overlay__btn {
  background: var(--c-text);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-overlay__btn svg { width: 16px; height: 16px; }

.mockup-body__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mockup-body__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-score {
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 24px;
}

.mockup-score__ring {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.mockup-score__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.mockup-score__number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
}

.mockup-score__label {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 4px;
}

.mockup-score__status {
  font-size: 15px;
  font-weight: 700;
  color: #ea580c;
}

.mockup-findings {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-finding {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-finding__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff7ed;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mockup-finding__icon svg { width: 16px; height: 16px; color: #f97316; }

.mockup-finding__name {
  font-size: 13px;
  font-weight: 700;
  flex: 1;
  margin-left: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-finding__badge {
  font-size: 11px;
  background: #fff7ed;
  color: #ea580c;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  display: none;
}

.mockup-finding__badge--red {
  background: #fef2f2;
  color: #dc2626;
  display: none;
}

/* ════════════════════ WHAT WE CHECK ════════════════════ */
.checks-section {
  padding: 64px 16px 96px;
  background: #fff;
}

.checks-section__container {
  max-width: 1280px;
  margin: 0 auto;
}

.checks-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.checks-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: #f3f4f6;
  color: var(--c-muted);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.checks-badge svg { width: 16px; height: 16px; }

.checks-section__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.checks-section__subtitle {
  color: var(--c-muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}

.checks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.checks-card {
  border-radius: 24px;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.checks-card--dark {
  background: var(--c-text);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checks-card--white {
  background: #fff;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.checks-card--gray {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checks-card--orange-accent {
  background: rgba(255, 247, 237, 0.5);
  border: 1px solid rgba(251, 146, 60, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
}

.checks-card__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(234, 81, 39, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.checks-card__content { position: relative; z-index: 10; }

.checks-card__top-part { position: relative; z-index: 10; }

.checks-card__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.checks-card__icon-box svg { width: 24px; height: 24px; }

.checks-card__icon-box--glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checks-card__icon-box--glass svg { color: #fb923c; }
.checks-card__icon-box--orange { background: #fff7ed; color: #f97316; }
.checks-card__icon-box--emerald { background: #ecfdf5; color: #10b981; }
.checks-card__icon-box--white-shadow { background: #fff; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04); color: #f97316; }

.checks-card__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.checks-card__heading--light { color: #fff; font-size: 24px; }

.checks-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 24px;
}

.checks-card__text--light { color: #9ca3af; font-size: 15px; margin-bottom: 0; }

/* Decor elements in checks cards */
.checks-card__decor {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.decor-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.decor-row--dim { opacity: 0.5; }

.decor-icon { width: 20px; height: 20px; flex-shrink: 0; }
.decor-icon--green { color: #34d399; }
.decor-icon--red { color: #f87171; }
.decor-icon--gray { color: #6b7280; }

.decor-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
}

.decor-bar--75 { width: 75%; background: rgba(255, 255, 255, 0.1); }
.decor-bar--85 { width: 85%; background: rgba(255, 255, 255, 0.1); }

.checks-card__decor-form {
  background: var(--c-bg);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(239, 68, 68, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.decor-form__red-bar {
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #f87171;
}

.decor-form__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.decor-form__checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid #f87171;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.decor-form__pulse {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.decor-form__label-text {
  font-size: 10px;
  color: var(--c-muted-2);
  line-height: 1.4;
}

.checks-card__ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #059669;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.checks-card__ssl-badge svg { width: 16px; height: 16px; }

.checks-card__tracker-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.tracker-item {
  padding: 6px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid;
}

.tracker-item--red { border-color: #fee2e2; }
.tracker-item--green { border-color: #d1fae5; }

.tracker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tracker-dot--red { background: #ef4444; }
.tracker-dot--green { background: #10b981; }

.checks-card__plus-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.checks-card__plus-icon {
  width: 40px;
  height: 40px;
  background: #fed7aa;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c2410c;
  font-weight: 700;
  font-size: 14px;
}

.checks-card__plus-title {
  font-weight: 700;
  color: var(--c-text);
  font-size: 15px;
}

.checks-card__carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.carousel-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.checks-tag {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--c-border-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ════════════════════ FAQ ════════════════════ */
.faq-section {
  padding: 64px 16px 96px;
}

.faq-section__container {
  max-width: 768px;
  margin: 0 auto;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  padding-right: 20px;
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--c-muted-2);
  transition: transform 300ms;
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }

.faq-item__content {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-item__content { display: block; }

/* ════════════════════ BOTTOM CTA ════════════════════ */
.bottom-cta {
  padding: 80px 16px 112px;
  background: var(--c-text);
  position: relative;
  overflow: hidden;
}

.bottom-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(234, 81, 39, 0.2);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.bottom-cta__container {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  color: #fff;
}

.bottom-cta__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: #fed7aa;
}

.bottom-cta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.bottom-cta__br { display: none; }

.bottom-cta__text {
  color: #9ca3af;
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 16px;
}

.bottom-cta__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 576px;
  margin: 0 auto;
  gap: 8px;
}

.bottom-cta__form-icon {
  display: none;
  padding-left: 16px;
  color: var(--c-muted-2);
}

.bottom-cta__form-icon svg { width: 20px; height: 20px; }

.bottom-cta__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  color: var(--c-text);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.bottom-cta__input::placeholder { color: var(--c-muted-2); }

.bottom-cta__submit {
  width: 100%;
  background: var(--c-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background 150ms;
  box-shadow: 0 4px 14px rgba(234, 81, 39, 0.39);
}

.bottom-cta__submit:hover { background: var(--c-primary-hover); }

/* ════════════════════ FOOTER ════════════════════ */
.landing-footer {
  background: var(--c-dark);
  color: #9ca3af;
  padding: 40px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.landing-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-footer__mark {
  width: 24px;
  height: 24px;
  background: var(--c-primary);
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  opacity: 0.9;
}

.landing-footer__name {
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.landing-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.landing-footer__nav a {
  font-size: 13px;
  transition: color 150ms;
}

.landing-footer__nav a:hover { color: #fff; }

.landing-footer__copy {
  font-size: 12px;
  opacity: 0.6;
}

/* ════════════════════ SCAN MODAL ════════════════════ */
.scan-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(244, 245, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  opacity: 1;
  transition: opacity 300ms;
}

.scan-modal--hidden {
  display: none !important;
}

.scan-modal--fade-out {
  opacity: 0;
}

.scan-modal__content {
  max-width: 768px;
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.scan-modal__header {
  text-align: center;
  margin-bottom: 48px;
}

.scan-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: #fff7ed;
  color: #ea580c;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.scan-modal__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: pulse 2s ease-in-out infinite;
}

.scan-modal__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.scan-modal__url {
  color: var(--c-muted);
  font-size: 15px;
}

.scan-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--c-border-2);
  display: grid;
  place-items: center;
  color: var(--c-muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, transform 150ms;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.scan-modal__close:hover {
  background: #fff;
  color: var(--c-text);
  transform: scale(1.1);
}

.scan-modal__close svg {
  width: 20px;
  height: 20px;
}

.scan-modal__actions {
  margin-top: 40px;
  text-align: center;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.scan-modal__cancel-btn {
  background: transparent;
  border: 1px solid var(--c-border-2);
  color: var(--c-muted);
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}

.scan-modal__cancel-btn:hover {
  background: #fff;
  color: var(--c-text);
  border-color: var(--c-border-2);
}

/* Scan steps */
.scan-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  max-width: 576px;
  margin: 0 auto;
}

.scan-steps__line {
  position: absolute;
  left: 27px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--c-border-2);
  z-index: 0;
}

.scan-step {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 10;
}

.scan-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid var(--c-border-2);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--c-muted-2);
  flex-shrink: 0;
  transition: all 300ms;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
}

.scan-step__text {
  padding-top: 12px;
  opacity: 0.4;
  transition: opacity 500ms;
}

.scan-step__title {
  font-weight: 700;
  font-size: 17px;
  color: var(--c-text);
  margin-bottom: 4px;
}

.scan-step__desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* Step states */
.scan-step.is-active .scan-step__icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(234, 81, 39, 0.35);
  transform: scale(1.1);
}

.scan-step.is-active .scan-step__text { opacity: 1; }

.scan-step.is-done .scan-step__icon {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #10b981;
}

.scan-step.is-done .scan-step__text { opacity: 1; }

.scan-step.is-error .scan-step__icon {
  background: #fef2f2;
  border-color: #fecaca;
  color: #ef4444;
}

/* Scan complete action */
.scan-complete {
  margin-top: 56px;
  text-align: center;
  opacity: 0;
  transition: opacity 500ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}

.scan-complete.is-visible { opacity: 1; }

.scan-complete__btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  max-width: 280px;
  transition: background 150ms;
}

.scan-complete__btn--primary {
  background: var(--c-text);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scan-complete__btn--primary:hover { background: #000; }

.scan-complete__btn--secondary {
  background: transparent;
  color: #ea580c;
}

.scan-complete__btn--secondary:hover { background: var(--c-surface-soft); }

/* Scan error */
.scan-error {
  display: none;
  margin-top: 32px;
  text-align: center;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 16px;
}

.scan-error.is-visible { display: block; }

.scan-error p {
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
}

.scan-error__retry {
  background: var(--c-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}

/* ════════════════════ DEMO MODAL ════════════════════ */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 300ms;
}

.demo-modal--hidden {
  display: none !important;
}

.demo-modal--fade-out {
  opacity: 0;
}

.demo-modal__window {
  width: min(1280px, calc(100vw - 32px));
  height: min(92vh, 980px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(1);
  transition: transform 300ms;
}

.demo-modal--scale-in .demo-modal__window {
  transform: scale(0.95);
}

.demo-modal__header {
  flex: 0 0 auto;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--c-border-2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px 24px 0 0;
}

.demo-modal__header-left {
  display: flex;
  gap: 8px;
  align-items: center;
}

.demo-modal__close-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff5f56;
  border: 1px solid rgba(224, 68, 62, 0.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 150ms;
}

.demo-modal__close-btn:hover { background: #ff473e; }

.demo-modal__close-btn svg {
  width: 10px;
  height: 10px;
  color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 150ms;
}

.demo-modal__close-btn:hover svg { opacity: 1; }

.demo-modal__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.demo-modal__dot--yellow { background: #ffbd2e; border: 1px solid rgba(222, 161, 35, 0.3); }
.demo-modal__dot--green { background: #27c93f; border: 1px solid rgba(26, 171, 41, 0.3); }

.demo-modal__address {
  margin: 0 auto;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-modal__lock { width: 12px; height: 12px; color: #10b981; flex-shrink: 0; }

.demo-modal__header-spacer { width: 54px; }

.demo-modal__x {
  position: absolute;
  top: 6px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  display: grid;
  place-items: center;
  color: var(--c-muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, transform 150ms;
  z-index: 10;
}

.demo-modal__x:hover {
  background: rgba(0, 0, 0, 0.12);
  color: var(--c-text);
  transform: scale(1.1);
}

.demo-modal__x svg {
  width: 18px;
  height: 18px;
}

.demo-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--c-bg);
  border-radius: 0 0 24px 24px;
}

/* ════════════════════ ANIMATIONS ════════════════════ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ════════════════════ SCROLL REVEAL ════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal__inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible .reveal__inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.reveal__stagger {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible .reveal__stagger:nth-child(1) { transition-delay: 0.1s; }
.reveal.is-visible .reveal__stagger:nth-child(2) { transition-delay: 0.2s; }
.reveal.is-visible .reveal__stagger:nth-child(3) { transition-delay: 0.3s; }
.reveal.is-visible .reveal__stagger:nth-child(4) { transition-delay: 0.4s; }
.reveal.is-visible .reveal__stagger:nth-child(5) { transition-delay: 0.5s; }
.reveal.is-visible .reveal__stagger:nth-child(6) { transition-delay: 0.6s; }

.reveal.is-visible .reveal__stagger {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (min-width: 640px) {
  .nav-brand__text { display: inline; }

  .hero__br { display: block; }

  .scan-form { flex-direction: row; }
  .scan-form__traffic-lights { display: flex; }
  .scan-form__globe { display: flex; }
  .scan-form__input { text-align: left; }
  .scan-form__btn { width: auto; }

  .hero__form-wrap { padding: 0; }

  .report-example__buttons { flex-direction: row; width: auto; }
  .report-example__btn-cta { width: auto; }
  .report-example__btn-demo { width: auto; }

  .bottom-cta__form { flex-direction: row; gap: 0; }
  .bottom-cta__form-icon { display: block; }
  .bottom-cta__input { text-align: left; }
  .bottom-cta__submit { width: auto; }

  .scan-complete { flex-direction: row; justify-content: center; }
  .scan-complete__btn { width: auto; max-width: none; }
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
  .nav-actions__login { display: block; }

  .nav-brand__text { display: inline; }

  .hero { padding: 96px 32px 128px; }
  .hero__badge { font-size: 14px; margin-bottom: 32px; }
  .hero__handwritten { display: flex; }

  .mockup-body__grid { flex-direction: row; gap: 24px; }
  .mockup-score { width: 50%; }
  .mockup-findings { width: 50%; }
  .mockup-finding__badge { display: block; }
  .mockup-finding__badge--red { display: block; }

  .report-example-section__container { flex-direction: row; gap: 64px; }
  .report-example__text { width: 33.333%; flex-shrink: 0; }

  .bottom-cta__br { display: block; }
}

@media (min-width: 1024px) {
  .floating-cards { display: block; }

  .bento-grid { grid-template-columns: repeat(12, 1fr); }
  .bento-card--span8 { grid-column: span 8; }
  .bento-card--span4 { grid-column: span 4; }
  .bento-card--span5 { grid-column: span 5; }
  .bento-card--span7 { grid-column: span 7; }

  .bento-card__code { display: block; }

  .bento-card { padding: 48px; min-height: 340px; }
  .bento-card--span5, .bento-card--span7 { min-height: 280px; }

  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .how-connector { display: block; }

  .checks-grid { grid-template-columns: repeat(3, 1fr); }
  .checks-card--span2 { grid-column: span 2; }
  .checks-card--span3 { grid-column: span 3; }

  .checks-card--dark { flex-direction: row; gap: 32px; align-items: center; }
  .checks-card__decor { width: 260px; flex-shrink: 0; }

  .checks-card--gray { flex-direction: row; gap: 32px; align-items: center; }
  .checks-card__tracker-list { width: 300px; flex-shrink: 0; }

  .checks-card--orange-accent { flex-direction: row; justify-content: space-between; }

  .landing-footer__inner { flex-direction: row; justify-content: space-between; }

  .report-example__mockup { transform: rotate(1deg); }
  .report-example__mockup:hover { transform: rotate(0); }

  .scan-step { gap: 24px; }
  .scan-step__icon { width: 56px; height: 56px; }
}

@media (min-width: 1280px) {
  .float-card--1 { left: 2%; }
  .float-card--2 { left: -2%; }
  .float-card--3 { left: 12%; }
  .float-card--4 { right: 2%; }
  .float-card--5 { right: -2%; }
  .float-card--6 { right: 8%; }
}

@media (min-width: 1280px) {
  .float-card--1 { left: 2%; }
  .float-card--2 { left: -2%; }
  .float-card--3 { left: 3%; }
  .float-card--4 { right: 2%; }
  .float-card--5 { right: -2%; }
  .float-card--6 { right: 3%; }
}

@media (max-width: 479px) {
  .hero__title { min-height: 180px; }
}

/* ════════════════════ REPORT PAGE OVERRIDES ════════════════════ */
body[data-page="landing"] .topbar { display: none; }
body[data-page="landing"] .report-page { display: none; }
