
:root {
  --bg: #f7fbff;
  --surface: rgba(255, 255, 255, 0.84);
  --text: #0d1b4c;
  --muted: #5f6c85;
  --line: rgba(64, 99, 154, 0.16);
  --blue: #246bfe;
  --teal: #09a7a0;
  --shadow: 0 22px 70px rgba(31, 56, 111, 0.13);
  --radius: 30px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(52, 128, 255, 0.11), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(116, 75, 255, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 58%, #ffffff 100%);
}

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

.page {
  width: min(1180px, 92vw);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0;
  color: #5b6782;
  font-size: 15px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.035em;
  font-size: 22px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 2px solid rgba(36, 107, 254, .32);
  color: var(--blue);
  box-shadow: 0 10px 28px rgba(36, 107, 254, .10);
}

.home-link {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 52px;
  padding: 34px 0 64px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 28px;
}

.badge.teal {
  background: rgba(9, 167, 160, .10);
  color: var(--teal);
}

h1 {
  margin: 0;
  color: #008b84;
  font-size: clamp(50px, 5.6vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.085em;
  font-weight: 950;
  white-space: nowrap;
}

.lead {
  margin: 40px 0 0;
  color: #101d4f;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.44;
  letter-spacing: -0.065em;
  font-weight: 900;
  word-break: keep-all;
}

.summary {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.75;
  letter-spacing: -0.045em;
  font-weight: 650;
  word-break: keep-all;
}

.status {
  margin-top: 38px;
  padding: 28px 34px;
  border-radius: 24px;
  border: 1px dashed rgba(64, 99, 154, .28);
  background: rgba(255, 255, 255, .58);
}

.status strong {
  display: block;
  margin-bottom: 10px;
  color: #101d4f;
  font-size: 22px;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.status span {
  display: block;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.panel {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 28% 26%, rgba(36, 107, 254, .16), transparent 22%),
    radial-gradient(circle at 70% 40%, rgba(9, 167, 160, .12), transparent 24%),
    radial-gradient(circle at 54% 76%, rgba(124, 63, 242, .13), transparent 24%);
}

.visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.card-stack {
  position: relative;
  width: min(360px, 74%);
  height: 270px;
}

.document {
  position: absolute;
  left: 52px;
  top: 22px;
  width: 210px;
  height: 250px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f2faff);
  box-shadow: 0 22px 60px rgba(31, 56, 111, .14);
  transform: rotate(-7deg);
}

.document::before {
  content: "PATENT";
  position: absolute;
  left: 30px;
  top: 34px;
  color: #17316d;
  font-weight: 950;
  letter-spacing: .08em;
}

.document::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 82px;
  height: 88px;
  background: repeating-linear-gradient(
    180deg,
    rgba(13, 27, 76, .14) 0 7px,
    transparent 7px 19px
  );
}

.magnifier {
  position: absolute;
  left: 10px;
  bottom: 22px;
  width: 130px;
  height: 130px;
  border: 14px solid rgba(9, 167, 160, .55);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .5);
}

.magnifier::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 16px;
  right: -68px;
  bottom: 6px;
  border-radius: 999px;
  background: rgba(9, 167, 160, .67);
  transform: rotate(34deg);
}

.graph-dot {
  position: absolute;
  border-radius: 50%;
  background: #10bcb5;
  box-shadow: 0 0 0 9px rgba(16, 188, 181, .12);
}

.d1 { right: 46px; top: 64px; width: 16px; height: 16px; }
.d2 { right: 118px; top: 136px; width: 18px; height: 18px; }
.d3 { right: 32px; top: 184px; width: 14px; height: 14px; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 30px 0;
  color: #5b6782;
  font-size: 15px;
}

.footer p { margin: 0; }
.footer-left { justify-self: start; }
.footer-center { justify-self: center; }
.footer-right { justify-self: end; text-align: right; }
.footer a { color: inherit; }

@media (max-width: 1060px) {
  h1 {
    font-size: clamp(42px, 6vw, 60px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .panel {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(92vw, 680px);
  }

  .header,
  .footer {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  h1 {
    white-space: normal;
    font-size: clamp(42px, 12vw, 62px);
  }

  .lead {
    font-size: clamp(26px, 7vw, 36px);
  }

  .panel {
    min-height: 340px;
  }
}
