:root {
  color-scheme: light;
  --amber: #ffbe0b;
  --orange: #fb5607;
  --pink: #ff006e;
  --violet: #8338ec;
  --blue: #3a86ff;
  --charcoal: #111827;
  --ink: #172033;
  --muted: #667085;
  --paper: #fffdf8;
  --line: rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 190, 11, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 10%, rgba(58, 134, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, #fffdf8 0%, #f7fbff 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 28px;
}

.hero {
  min-height: calc(100vh - 210px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 0.9;
}

.brand__word {
  color: var(--charcoal);
  font-size: clamp(62px, 11vw, 140px);
  font-weight: 950;
  letter-spacing: 0;
}

.brand__bang {
  display: inline-block;
  margin-left: 0.06em;
  font-size: clamp(72px, 12vw, 154px);
  font-weight: 950;
  line-height: 0.8;
  background: linear-gradient(180deg, var(--amber), var(--orange) 32%, var(--pink) 62%, var(--violet) 82%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(2.6rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  color: white;
  background: var(--charcoal);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.button--secondary {
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.72);
}

.experience-panel {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(100%, 360px);
  border: 10px solid var(--charcoal);
  border-radius: 32px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.2);
}

.phone__bar {
  width: 92px;
  height: 8px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: var(--charcoal);
}

.mission {
  border-radius: 16px;
  padding: 22px;
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.68)),
    linear-gradient(135deg, var(--orange), var(--pink), var(--violet), var(--blue));
}

.mission__type {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission h2 {
  margin: 18px 0 12px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.mission p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.mission__score {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--charcoal);
  background: var(--amber);
  font-weight: 900;
}

.mission-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mission-list div {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 700;
}

.mission-list span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: var(--blue);
}

.mission-list div:nth-child(2) span {
  background: var(--pink);
}

.mission-list div:nth-child(3) span {
  background: var(--orange);
}

.host-card {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(290px, 72%);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(18px);
}

.host-card strong,
.host-card span {
  display: block;
}

.host-card strong {
  margin-bottom: 4px;
  color: var(--charcoal);
}

.host-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(255, 190, 11, 0.2);
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
}

.use-cases article {
  border-top: 3px solid var(--charcoal);
  padding-top: 18px;
}

.use-cases article:nth-child(1) {
  border-color: var(--orange);
}

.use-cases article:nth-child(2) {
  border-color: var(--pink);
}

.use-cases article:nth-child(3) {
  border-color: var(--blue);
}

.use-cases h2 {
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.use-cases p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 28px, 640px);
    padding-top: 22px;
  }

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

  .hero__content {
    gap: 24px;
  }

  .experience-panel {
    min-height: auto;
    padding-bottom: 32px;
  }

  .host-card {
    right: 10px;
    bottom: 6px;
  }

  .use-cases {
    grid-template-columns: 1fr;
    padding-top: 12px;
  }
}

@media (max-width: 460px) {
  .actions,
  .button {
    width: 100%;
  }

  .brand__word {
    font-size: clamp(54px, 19vw, 78px);
  }

  .brand__bang {
    font-size: clamp(62px, 21vw, 86px);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .phone {
    border-width: 8px;
    border-radius: 28px;
    padding: 18px;
  }
}
