:root {
  color-scheme: dark;
  --bg: #101218;
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .115);
  --text: #f8fafc;
  --muted: #b8c7dc;
  --soft: #8fa4bf;
  --accent: #ff4a4a;
  --orange: #ff9f1c;
  --blue: #60a5fa;
  --green: #4ade80;
  --violet: #a78bfa;
  --logo-gray: #4d4d4d;
  --line: rgba(255, 255, 255, .11);
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 74, 74, .28), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(96, 165, 250, .18), transparent 30rem),
    radial-gradient(circle at 55% 88%, rgba(74, 222, 128, .11), transparent 24rem),
    linear-gradient(135deg, #101218, #1b1014 58%, #111827);
  color: var(--text);
  font-family: Tahoma, Verdana, Segoe UI, Arial, sans-serif;
}

a { color: inherit; }

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: center;
  min-height: 360px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -90px -130px auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 38px solid rgba(255, 74, 74, .55);
  opacity: .9;
}

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

.hero.centered {
  display: block;
  min-height: 420px;
  text-align: center;
}

.hero.centered .lede {
  margin-left: auto;
  margin-right: auto;
}

.home-logo-wrap {
  position: relative;
  display: inline-block;
  width: min(760px, 88%);
  aspect-ratio: 603 / 200;
  margin: 0 auto 24px;
}

.home-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .38));
}

.registered-mark {
  position: absolute;
  top: -4px;
  right: -22px;
  color: var(--logo-gray);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .45);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.company-title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: -.055em;
  line-height: 1.08;
}

.home-tagline {
  margin: 0 0 20px;
  background: linear-gradient(90deg, #ffffff, #ffb4b4 45%, #9ed2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.18;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, .16);
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

h1 {
  margin: 22px 0 14px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.12;
  letter-spacing: -.06em;
}

h1 span {
  display: block;
  line-height: 1.12;
  padding-bottom: .06em;
  background: linear-gradient(90deg, #ffffff, #ffb4b4 45%, #9ed2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -.04em;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -.035em;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.card-actions,
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 74, 74, .22);
}

.button.secondary,
button.secondary {
  background: rgba(255, 255, 255, .13);
  color: var(--text);
  box-shadow: none;
}

.button.blue { background: var(--blue); color: #101218; }
.button.green { background: var(--green); color: #101218; }
.button.orange { background: var(--orange); color: #101218; }
.button.violet { background: var(--violet); color: #101218; }

.feature-stack {
  position: relative;
  display: grid;
  gap: 12px;
  z-index: 1;
}

.mini-card,
.card,
.footer-card {
  border: 1px solid var(--line);
  background: rgba(16, 18, 24, .66);
}

.mini-card {
  padding: 16px;
  border-radius: 20px;
}

.mini-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.mini-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 34px 4px 16px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
}

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

.card {
  grid-column: span 6;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
}

.card.wide { grid-column: span 12; }

.software-card {
  position: relative;
  overflow: hidden;
  grid-column: span 6;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
}

.software-card.featured {
  grid-column: span 12;
  min-height: 430px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}

.media {
  min-height: 190px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 74, 74, .26), rgba(96, 165, 250, .14));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.featured .media {
  min-height: 100%;
  border-left: 1px solid var(--line);
}

.media img,
.product-shot,
.hero-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .35));
}

.media img { max-height: 310px; }
.hero-logo { max-height: 220px; margin: 0 auto 18px; display: block; }

.media.cover img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 20px;
}

.chip {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .07);
  font-size: 12px;
}

.footer-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
}

label, input, select {
  display: block;
  width: 100%;
}

label {
  margin: 14px 0 8px;
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
  color: var(--text);
  font: inherit;
}

select option { color: #101218; }

pre,
code {
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
  color: #e5e7eb;
}

code { padding: 2px 5px; }

pre {
  overflow-x: auto;
  padding: 14px;
}

pre code {
  padding: 0;
  background: transparent;
}

@media (max-width: 860px) {
  main { width: min(100% - 24px, 1180px); padding-top: 18px; }
  .hero,
  .software-card.featured { grid-template-columns: 1fr; }
  .featured .media {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .software-card,
  .card { grid-column: span 12; }
  .section-head { display: block; }
  .section-head p { margin-top: 8px; }
}

@media (max-width: 560px) {
  main { width: min(100% - 18px, 1180px); }
  .hero { padding: 22px; border-radius: 22px; }
  .brand { align-items: flex-start; white-space: normal; }
  .home-logo-wrap { width: min(100%, 760px); margin-bottom: 20px; }
  .registered-mark { top: -4px; right: -8px; }
  .company-title { font-size: clamp(42px, 13vw, 62px); }
  .home-tagline { font-size: clamp(22px, 8vw, 34px); }
  .software-card { min-height: 0; border-radius: 22px; }
  .media { min-height: 165px; }
  .content,
  .card { padding: 18px; }
  .button,
  button,
  .card-actions .button { width: 100%; }
}
