:root {
  --bg: #f6f8fc;
  --ink: #171717;
  --muted: #5b6575;
  --panel: #ffffff;
  --line: #dce2ed;
  --brand: #ff5a00;
  --brand-strong: #001a57;
  --accent: #ff8a00;
  --shadow: 0 20px 70px rgba(0, 26, 87, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 90, 0, 0.18), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(0, 26, 87, 0.14), transparent 28rem),
    linear-gradient(135deg, #f6f8fc 0%, #ffffff 100%);
}

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

.page-shell {
  width: min(100%, 680px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 20px;
}

.profile {
  text-align: center;
  padding: 10px 0 24px;
}

.brand-logo {
  display: block;
  width: min(250px, 68vw);
  height: auto;
  margin: 0 auto 16px;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2,
p {
  margin-top: 0;
}

.bio {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.link-card {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 10px 30px rgba(30, 29, 25, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 18px 44px rgba(30, 29, 25, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.link-card.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #ffffff;
}

.link-card strong,
.link-card small {
  display: block;
}

.link-card strong {
  margin-bottom: 5px;
  font-size: 1rem;
}

.link-card small {
  color: currentColor;
  font-size: 0.88rem;
  line-height: 1.35;
  opacity: 0.72;
}

.arrow {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.1);
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}

.primary .arrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.feature {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.feature-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 460px) {
  .page-shell {
    padding: 28px 14px;
  }

  .brand-logo {
    width: min(220px, 72vw);
  }

  .link-card {
    min-height: 76px;
    padding: 16px;
  }

  .feature {
    padding: 20px;
  }
}
