@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/geist.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/geist-mono.woff2") format("woff2");
}

:root {
  --cloud-burst: #223247;
  --pale-slate: #c1b8be;
  --puerto-rico: #4dc09b;
  --kimberly: #8079a6;
  --soft-white: #f7f6f5;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--cloud-burst);
}

body {
  margin: 0;
  color: var(--soft-white);
  background: var(--cloud-burst);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  justify-content: center;
  overflow: hidden;
  padding: 70px 24px 44px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 50% -8%, #334763 0, var(--cloud-burst) 44%);
  background-size: 42px 42px, 42px 42px, auto;
}

.page-shell::before {
  position: absolute;
  z-index: -1;
  top: 9%;
  left: 50%;
  width: min(850px, 98vw);
  height: 540px;
  border: 1px solid rgba(193, 184, 190, 0.14);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%) rotate(-8deg);
}

.page-shell::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -175px;
  width: 440px;
  height: 440px;
  border: 72px solid rgba(193, 184, 190, 0.035);
  border-radius: 50%;
  content: "";
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.16;
}

.ambient-mint {
  top: 2%;
  left: max(-190px, calc(50% - 610px));
  background: var(--puerto-rico);
}

.ambient-lavender {
  right: max(-190px, calc(50% - 610px));
  bottom: 9%;
  background: var(--kimberly);
}

.link-hub {
  width: min(100%, 650px);
}

.profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.profile-mark {
  position: relative;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: rgba(18, 33, 50, 0.72);
  box-shadow:
    0 25px 55px rgba(8, 17, 29, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(7deg);
}

.profile-mark::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(77, 192, 155, 0.24);
  border-radius: 35px;
  content: "";
}

.profile-mark img {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  object-fit: contain;
  transform: rotate(-7deg);
}

.mark-halo {
  position: absolute;
  inset: -11px;
  border: 1px dashed rgba(77, 192, 155, 0.33);
  border-radius: 48px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 15px;
  color: var(--puerto-rico);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

h1 {
  margin: 0;
  color: var(--soft-white);
  font-size: clamp(2.65rem, 9vw, 4.65rem);
  font-weight: 760;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

h1 span {
  color: var(--puerto-rico);
}

.link-list {
  display: grid;
  margin-top: 38px;
}

.link-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  transition: transform 220ms ease;
}

.secondary-links {
  display: grid;
  gap: 11px;
}

.link-card {
  position: relative;
  display: grid;
  min-height: 88px;
  align-items: center;
  grid-template-columns: auto auto 1fr auto;
  gap: 16px;
  overflow: hidden;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(193, 184, 190, 0.18);
  border-radius: 21px;
  background: rgba(25, 40, 58, 0.77);
  box-shadow:
    0 13px 30px rgba(7, 17, 29, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(15px);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.link-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--pale-slate);
  content: "";
  opacity: 0.72;
}

.link-card:nth-child(2n)::after {
  background: var(--kimberly);
}

.link-card:nth-child(3n)::after {
  background: var(--puerto-rico);
}

.link-number {
  align-self: start;
  padding-top: 3px;
  color: rgba(193, 184, 190, 0.43);
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.link-badge {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(193, 184, 190, 0.19);
  border-radius: 15px;
  color: var(--pale-slate);
  background: rgba(193, 184, 190, 0.08);
  font-family: "Geist Mono", monospace;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.link-card:nth-child(2n) .link-badge {
  color: #c9c3e2;
  background: rgba(128, 121, 166, 0.14);
}

.link-card:nth-child(3n) .link-badge {
  color: var(--puerto-rico);
  background: rgba(77, 192, 155, 0.1);
}

.link-copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
}

.link-copy strong {
  color: var(--soft-white);
  font-size: 0.98rem;
  font-weight: 680;
  letter-spacing: -0.015em;
}

.link-copy span {
  overflow: hidden;
  max-width: 100%;
  margin-top: 5px;
  color: rgba(193, 184, 190, 0.62);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-arrow {
  width: 37px;
  height: 37px;
  border: 1px solid rgba(193, 184, 190, 0.14);
  color: rgba(247, 246, 245, 0.72);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.94rem;
}

.link-card:hover {
  border-color: rgba(77, 192, 155, 0.42);
  background: rgba(31, 49, 70, 0.92);
  transform: translateY(-2px);
}

.link-card:hover .link-arrow {
  transform: rotate(8deg) translate(2px, -2px);
}

.link-card:focus-visible {
  outline: 3px solid var(--soft-white);
  outline-offset: 4px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(193, 184, 190, 0.47);
  font-size: 0.66rem;
  font-weight: 570;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 51px 16px 34px;
    background-size: 32px 32px, 32px 32px, auto;
  }

  .profile-mark {
    width: 118px;
    height: 118px;
    margin-bottom: 25px;
    border-radius: 36px;
  }

  .profile-mark::after {
    border-radius: 30px;
  }

  .profile-mark img {
    width: 102px;
    height: 102px;
  }

  .mark-halo {
    border-radius: 42px;
  }

  .link-list {
    margin-top: 31px;
  }

  .link-card {
    min-height: 83px;
    grid-template-columns: auto 1fr auto;
    gap: 13px;
    padding: 13px 15px 13px 13px;
    border-radius: 19px;
  }

  .link-number {
    display: none;
  }

  .link-badge {
    width: 45px;
    height: 45px;
    border-radius: 14px;
  }

  .link-copy span {
    max-width: 205px;
  }

  .link-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 390px) {
  .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.17em;
  }

  .link-copy span {
    max-width: 178px;
  }

  footer {
    font-size: 0.57rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .profile {
    animation: reveal 700ms both ease-out;
  }

  .link-card {
    animation: reveal 620ms both ease-out;
  }

  .link-card:nth-child(1) {
    animation-delay: 110ms;
  }

  .link-card:nth-child(2) {
    animation-delay: 170ms;
  }

  .link-card:nth-child(3) {
    animation-delay: 220ms;
  }

  .link-card:nth-child(4) {
    animation-delay: 270ms;
  }

  .link-card:nth-child(5) {
    animation-delay: 320ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
