:root {
  --bg: #050505;
  --bg-elevated: #0e0e0e;
  --card: #151515;
  --card-strong: #1c1c1c;
  --text: #ffffff;
  --muted: #b8b8b8;
  --soft: #777777;
  --border: #2a2a2a;
  --border-strong: #454545;
  --button-bg: #ffffff;
  --button-text: #000000;
  --accent: #d6d6d6;
  --accent-soft: rgba(214, 214, 214, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1120px, calc(100% - 40px));
  color-scheme: dark;
}

body.theme-accent {
  --accent: #7cffb2;
  --accent-soft: rgba(124, 255, 178, 0.12);
  --border-strong: rgba(124, 255, 178, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.05), transparent 30%),
    radial-gradient(circle at 80% 10%, var(--accent-soft), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--button-bg);
  color: var(--button-text);
  padding: 10px 14px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.brand-logo-wrap.small {
  width: 38px;
  height: 38px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-fallback {
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #000;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.desktop-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-switch {
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
  transition: border 0.2s ease, color 0.2s ease;
}

.theme-switch:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--button-bg);
  color: var(--button-text);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

body.theme-accent .btn-primary {
  background: var(--accent);
  color: #020202;
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--border-strong);
}

.btn-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: var(--container);
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(14, 14, 14, 0.98);
}

.mobile-nav a:not(.btn) {
  display: block;
  color: var(--muted);
  padding: 12px 6px;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -160px;
  top: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 880px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  max-width: 690px;
  margin-bottom: 34px;
}

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

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
}

.hero-panel,
.why-panel,
.contact-form,
.mini-card,
.service-card,
.step {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(circle at 80% 0%, var(--accent-soft), transparent 35%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
}

.hero-threat-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.94);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  position: relative;
  overflow: hidden;
}

.hero-threat-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.38;
  pointer-events: none;
}

.hero-threat-panel > * {
  position: relative;
  z-index: 1;
}

.terminal-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
}

.threat-panel-title {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.threat-line {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.threat-line strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
}

.threat-line span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.threat-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.threat-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 15px;
  padding: 18px 16px;
}

.threat-metrics strong {
  display: block;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.threat-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 24px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.signal-card {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
}

.signal-card p,
.panel-label {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.signal-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.metric-grid div {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.metric-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.85rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
}

.two-column {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.section-copy p {
  font-size: 1.04rem;
}

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

.mini-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 190px;
  transition: transform 0.2s ease, border 0.2s ease;
}

.mini-card:hover,
.service-card:hover,
.step:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.mini-card span,
.step span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.mini-card h3,
.service-card h3,
.step h3 {
  margin: 18px 0 10px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-header p:not(.eyebrow) {
  font-size: 1.08rem;
}

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

.service-card {
  border-radius: var(--radius-lg);
  padding: 26px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: rgba(255, 255, 255, 0.035);
}

.service-card p {
  margin-bottom: auto;
}

.service-card a {
  color: var(--text);
  font-weight: 800;
  margin-top: 24px;
}

.service-card a::after {
  content: " →";
  color: var(--accent);
}

.process {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 220px;
  position: relative;
  transition: transform 0.2s ease, border 0.2s ease;
}

.why-panel {
  min-height: 420px;
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.why-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid var(--border);
  border-radius: 999px 999px 40px 40px;
  opacity: 0.8;
}

.why-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
}

.why-panel > * {
  position: relative;
  z-index: 1;
}

.why-panel h2 {
  max-width: 420px;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.feature-list div {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.feature-list h3 {
  margin-bottom: 8px;
}

.contact {
  background:
    radial-gradient(circle at 20% 20%, var(--accent-soft), transparent 26%),
    rgba(255, 255, 255, 0.02);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  transition: border 0.2s ease, transform 0.2s ease;
}

.contact-methods a:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.contact-form {
  border-radius: var(--radius-xl);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.contact-form .full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
  color: var(--soft);
}

.form-note.success {
  color: var(--accent);
}

.form-note.error {
  color: #ff6060;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 28px;
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 34px;
  margin-bottom: 42px;
}

.footer-grid h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--soft);
  margin-bottom: 16px;
}

.footer-grid a:not(.brand) {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-grid p {
  max-width: 360px;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: var(--soft);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .two-column,
  .two-column.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-panel,
  .hero-threat-panel,
  .why-panel,
  .contact-form {
    border-radius: 22px;
    padding: 22px;
  }

  .metric-grid,
  .threat-metrics,
  .credibility-grid,
  .services-grid,
  .process-steps,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-social .social-icon {
  width: 38px;
  height: 38px;
  display: inline-grid !important;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 10px;
  margin-bottom: 0 !important;
  transition: border 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-social .social-icon:hover,
.footer-social .social-icon:focus-visible {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  outline: none;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-link {
  display: block;
  color: var(--muted);
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--text);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.modal-backdrop[hidden] {
  display: none;
}

.privacy-modal {
  width: min(860px, 100%);
  max-height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #070707;
  box-shadow: var(--shadow);
  overflow: hidden;
  outline: none;
}

.modal-header,
.modal-actions {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.modal-header h2 {
  margin-bottom: 0;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--border-strong);
  outline: none;
}

.modal-body {
  padding: 24px;
  overflow: auto;
}

.modal-body h3 {
  margin-top: 28px;
  margin-bottom: 8px;
}

.modal-body p {
  margin-bottom: 14px;
}
