:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 24px 24px 40px;
  background:
    radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.16), transparent 26%),
    radial-gradient(circle at 90% 0%, rgba(15, 23, 42, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  color: #101828;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(980px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
}

.layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
}

.hero,
.panel {
  border-radius: 28px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.hero {
  padding: 36px;
}

.panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.98) 0%, rgba(17, 24, 39, 0.92) 100%);
  color: #f8fafc;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  background: #101828;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}

.eyebrow {
  margin: 0;
  color: #667085;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
  max-width: 12ch;
}

.lead {
  margin: 18px 0 0;
  color: #475467;
  font-size: 17px;
  line-height: 1.65;
  max-width: 56ch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.06);
  color: #101828;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button {
  background: #101828;
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: #101828;
}

.detail-card {
  margin-top: 26px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.88));
}

.detail-label,
.panel-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-label {
  color: #667085;
}

.detail-card strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.detail-card p {
  margin: 10px 0 0;
  color: #475467;
  line-height: 1.6;
}

.panel-label {
  color: rgba(248, 250, 252, 0.72);
}

.panel h2 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.15;
}

.steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(248, 250, 252, 0.92);
  line-height: 1.5;
}

.steps li::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.95) 0 30%, transparent 31%),
    rgba(249, 115, 22, 0.16);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.28);
}

.footer-note {
  margin-top: 22px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .panel {
    padding: 24px;
  }

  h1 {
    max-width: none;
    font-size: clamp(30px, 10vw, 44px);
  }
}
