:root {
  --bg: #ffffff;
  --bg-muted: #fafafa;
  --text: #111111;
  --muted: #5f5f6b;
  --border: #e7e5ef;
  --border-strong: #d9d6e8;
  --purple: #7c3aed;
  --purple-soft: rgba(124, 58, 237, 0.08);
  --purple-ink: #5b21b6;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 58, 237, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(124, 58, 237, 0.06),
      transparent 26%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  font-family:
    "Geist",
    "Inter",
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--purple-ink);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.3);
  outline-offset: 3px;
  border-radius: 12px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: white;
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
}

.section {
  padding: 3.25rem 0;
}

.hero {
  padding-top: 1.75rem;
}

.section-muted {
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.02),
    rgba(124, 58, 237, 0.04)
  );
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.kicker,
.section-kicker,
.panel-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--purple);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 1;
  margin-top: 0.9rem;
}

.lede {
  max-width: 68ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--muted);
}

.belief {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-left: 4px solid var(--purple);
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.03);
  font-weight: 600;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card,
.card,
.about {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.45rem;
}

.panel-card-accent {
  border-color: rgba(124, 58, 237, 0.18);
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.08),
    rgba(255, 255, 255, 0.98)
  );
}

.panel-card p:last-child,
.card p:last-child,
.about p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 1.9rem;
}

.section-heading h2 {
  max-width: 28ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-top: 0.65rem;
  line-height: 1.08;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1.45rem;
}

.card h3,
.status-note h3,
.about-name {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.card p,
.status-note p,
.about p,
.panel-card p {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.card-strong {
  border-color: rgba(124, 58, 237, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(124, 58, 237, 0.03)
  );
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
}

.status-card {
  display: grid;
  gap: 0.95rem;
  align-items: start;
  align-content: start;
}

.status-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.status-card p {
  margin: 0;
  line-height: 1.68;
}

.status-belief {
  color: var(--purple-ink);
  font-weight: 700;
}

.status-belief-body {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-left: 4px solid var(--purple);
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.03);
}

.status-note {
  padding: 1.5rem;
}

.status-note h3 {
  margin-bottom: 0.7rem;
}

.status-note p {
  line-height: 1.68;
}

.about {
  width: 100%;
  max-width: none;
  padding: 1.9rem;
}

.motivation-content p,
.motivation-attribution p {
  max-width: none;
  margin: 0;
}

.motivation-content {
  display: grid;
  gap: 1rem;
}

.motivation-content p {
  line-height: 1.7;
}

.motivation-belief {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-left: 4px solid var(--purple);
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.03);
}

.motivation-belief p {
  margin: 0;
}

.motivation-attribution {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.motivation-attribution .about-name {
  font-size: 0.98rem;
}

.motivation-attribution p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.about-link {
  margin-top: 0.75rem;
}

.about-link a {
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero-grid,
  .status-layout,
  .card-grid-3,
  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 1.5rem 0;
  }

  .hero {
    padding-top: 1rem;
  }

  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

  .lede {
    font-size: 1rem;
  }
}
