:root {
  --blue: #0b74d1;
  --blue-dark: #0a5aa3;
  --pink: #b40862;
  --text: #1b1f23;
  --muted: #5b6672;
  --panel: rgba(255,255,255,0.92);
  --line: rgba(0,0,0,0.08);
  --warning-1: #111111;
  --warning-2: #f3c200;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(11,116,209,0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(180,8,98,0.08), transparent 22%),
    linear-gradient(180deg, #f5f5f5 0%, #ebebeb 100%);
}

.page {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 32px);
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  background: repeating-linear-gradient(
    -45deg,
    var(--warning-1) 0 20px,
    var(--warning-2) 20px 40px
  );
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

.page::before { top: 0; }
.page::after { bottom: 0; }

.wrapper {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,247,247,.96) 100%);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  overflow: hidden;
  min-height: calc(100vh - 32px);
  position: relative;
}

.wrapper::before {
  content: "";
  position: absolute;
  top: 140px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 10px solid rgba(11,116,209,.09);
  border-radius: 50%;
}

.header {
  padding: 28px 32px 18px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

.content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  padding: 36px 32px 40px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}


.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.kicker .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
}

h1 .accent {
  display: block;
  color: var(--blue);
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.card-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-value,
.card-value a {
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
  color: var(--pink);
  text-decoration: none;
  word-break: break-word;
}


.card.email-card .card-value,
.card.email-card .card-value a {
  font-size: clamp(18px, 1.55vw, 26px);
}

.card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.illustration {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.monitor {
  width: min(360px, 90%);
  aspect-ratio: 1 / 1;
  position: relative;
}

.monitor .screen {
  position: absolute;
  left: 11%;
  top: 14%;
  width: 78%;
  height: 52%;
  border-radius: 14px;
  background: linear-gradient(180deg, #0d78d6, #0b5eb0);
  border: 8px solid #c9d7e7;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}

.monitor .screen::before {
  content: "⚙";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.95);
  font-size: 84px;
}

.monitor .stand {
  position: absolute;
  left: 38%;
  bottom: 10%;
  width: 24%;
  height: 18%;
  background: linear-gradient(180deg, #bccdde, #93aec8);
  clip-path: polygon(35% 0, 65% 0, 80% 58%, 100% 100%, 0 100%, 20% 58%);
}

.cone {
  position: absolute;
  width: 88px;
  height: 120px;
  bottom: 18px;
  right: 24px;
  background: linear-gradient(180deg, #ff5ca8 0%, #ef2d87 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.12));
}

.cone::before,
.cone::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 10px;
  background: rgba(255,255,255,.92);
}

.cone::before { top: 44px; }
.cone::after { top: 72px; }

.cone-base {
  position: absolute;
  width: 132px;
  height: 16px;
  background: #ff5ca8;
  bottom: 10px;
  right: 2px;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
}

.footer {
  padding: 18px 32px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--blue-dark);
}

@media (max-width: 860px) {
  .content {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .illustration {
    min-height: 280px;
    order: -1;
  }
  .header,
  .content,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
